/* Options: Date: 2026-04-15 20:23:10 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://kpm_digiofficeapigateway.tbi.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProjectDetailsTBI.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Get project details */ @Route(Path="/tbi/Projects/{ID}", Verbs="GET") @Api(Description="Get project details") public static class GetProjectDetailsTBI implements IReturn { /** * ID or GlobalID */ @ApiMember(Description="ID or GlobalID", IsRequired=true) public String ID = null; public String getId() { return ID; } public GetProjectDetailsTBI setId(String value) { this.ID = value; return this; } private static Object responseType = ProjectDetailsTBI.class; public Object getResponseType() { return responseType; } } public static class ProjectDetailsTBI { public ArrayList Velden = null; public ArrayList getVelden() { return Velden; } public ProjectDetailsTBI setVelden(ArrayList value) { this.Velden = value; return this; } } public static class Veld { public String Name = null; public String Type = null; public Object Value = null; public String Description = null; public UUID GlobalID = null; public String getName() { return Name; } public Veld setName(String value) { this.Name = value; return this; } public String getType() { return Type; } public Veld setType(String value) { this.Type = value; return this; } public Object getValue() { return Value; } public Veld setValue(Object value) { this.Value = value; return this; } public String getDescription() { return Description; } public Veld setDescription(String value) { this.Description = value; return this; } public UUID getGlobalID() { return GlobalID; } public Veld setGlobalID(UUID value) { this.GlobalID = value; return this; } } }